home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Plotting / aa_Intel_Only / Gnuplot / GnuplotSource / OptionsPanel.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  726 b   |  44 lines

  1. /*
  2.  *  Copyright (C) 1993  Robert Davis
  3.  *
  4.  *  This program is free software; you can redistribute it and/or
  5.  *  modify it under the terms of Version 2, or any later version, of 
  6.  *  the GNU General Public License as published by the Free Software 
  7.  *  Foundation.
  8.  */
  9.  
  10. /* $Id: OptionsPanel.h,v 1.9 1993/05/18 03:55:25 davis Exp $ */
  11.  
  12.  
  13. #import <objc/Object.h>
  14.  
  15. @class Status;
  16.  
  17. @interface OptionsPanel:Object
  18. {
  19.     id        panel;
  20.     Status    *status;
  21. @private
  22.     BOOL    _textChanged;
  23. }
  24.  
  25. - init;
  26.  
  27. - panel;
  28. - showPanel:sender;
  29. - forceUpdate;
  30.  
  31.  
  32. /** Window Delegate Methods **/
  33.  
  34. - windowDidUpdate:sender;
  35.  
  36.  
  37. /** Text Delegate Methods **/
  38.  
  39. - textDidEnd:textObject endChar:(unsigned short)whyEnd;
  40. - (BOOL) textWillChange:textObject;
  41.  
  42.  
  43. @end
  44.